blob: 367c4e476310b0b6f51e5a9957de84377e9e7cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { KeySection } from "./key-section"
export default function () {
return (
<div data-page="workspace-[id]">
<div data-slot="sections">
<KeySection />
</div>
</div>
)
}
|